@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

body{
    font-family: 'Josefin Sans', sans-serif;
    background-color: #191919;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
.hero
{
    height: 120vh;
    width: 100%;
    background-image: url(/images/macbook.jpeg);
    position: relative;
    background-size: 300vh;
    background-position: center;
}
.content
{
    color: #A55F5F;
    position: absolute;
    top: 30%;
    left: 8%;
    transform: translateY(-50%);
}


.content h3{
    font-size: 25px;
    margin-bottom: 50px;
    color: black;
}
.content h1{
    margin: 20px 0px 20px;
    font-size: 65px;
    font-weight: 500px;
    

}
.content h4{
    letter-spacing: 2px;
    font-size: 20px;
    color: black;
}
.content span{
    color: #1abc;
}

.about{
    
    
    width: 100%;
    padding: 0px 0px;
    display: fixed;
    background-color: #191919;
}
.about img{
    
    height: auto;
    
    width: 530px;
}
.about-text{
    width: 550px;
}
.main{
    width:1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

.about-text h2{
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;

}
.about-text h5{
    color: white;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;

}
.about-text span{
    color: #599578;
}
.about-text p{
    color: #fcfc;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}
button{
    background-color:#599578;
    color: white;
    border: 2px solid transparent;
    font-weight:bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;

}
button:hover{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #599578;
}




nav{
    cursor: pointer;
    position: relative;
    margin: 0 auto;
    width: 460px;
    height: 50px;
    background: transparent;
    border-radius: 8px;
    font-size: 0;
    
}
nav a{
    font-size: 13px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    line-height: 50px;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-align: center;
}
nav .animation {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    background: #A55F5F;
    
    border-radius: 8px;
    transition: all .5s ease 0s;

}
nav a:nth-child(1){
    width: 100px;

}
nav .start-welcoome, a:nth-child(1):hover~.animation{
    width: 100px;
    left: 0;

}
nav a:nth-child(2){
    width: 140px;
    
}
nav .start-home, a:nth-child(2):hover~.animation{
    width: 110px;
    left: 115px;

}

nav a:nth-child(3){
    width: 80px;
    
} 
nav .start-portfolio, a:nth-child(3):hover~.animation{
    width: 100px;
    left: 230px;

}
nav a:nth-child(4){
    width: 140px;
    
} 
nav .start-contact, a:nth-child(4):hover~.animation{
    width: 120px;
    left: 340px;

}

.contact{
    
    position: relative;
    
    min-height: 100vh;
    padding: 50px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    left: 30px;
    
    
    
    
}
.contact-me{
    width: 100%;
    
    

}
.contact-me h2{
    
    
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}
.contact span{
    color: #1abc;
}

.contact-me p{
    
    font-weight: 200;
    color: #fff;
}

.container
{
    
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.container .contactInfo
{
    
    width: 50%;
    
    display:flex;
    flex-direction: column;
}


.container .contactInfo .box
{
    
    position: relative;
    padding: 20px 0px;
    display: flex;
}

.container .contactInfo .box .icon
{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container .contactInfo .box .text
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color:#fff;
    flex-direction: column;
    font-weight: 300;

}

.container .contactInfo .box .text h3
{
    font-weight: 500;
    color: #d5dae4;
}
.contactForm
{
    width: 40%;
    padding: 40px;
    background:#fff;
}
.contactForm h2
{
    font-size: 30px;
    color:black;
    
    
}
.contactForm .inputBox
{
    position: relative;
    width: 100%;
    margin-top: 25px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea


{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
}

.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span
{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactForm .submitBox input
{
    width: 120px;
    background:black;
    color:#fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    
}
.sci {
    display: flex;
    padding: 0;
    margin-top: 10px;
}
.sci li{
    list-style: none;
}
.sci li::before{
    
    content: attr(data-text);
    position: absolute;
    top: 1px;
    left: 110px;
    
    transform: translate(-50%, calc(-50% + 120px));
    font-size: 14vw;
    pointer-events: none;
    font-weight: 70;
    transition: 0.5s;
    opacity: 0;
}
.sci li a:hover::before{
    opacity: 0.1;
    transform: translate(-50%, calc(50% + 150px));
}


.sci li a{
    position: relative;
    
    
    display: inline-block; 
    justify-content: center;
    background: #fff;
    color: #333;
    border-radius: 20px;
    
    font-size: 4em;
    margin: 20px;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 500px;
    box-shadow: 0 25px 35px rgba(0,0,0,0.1);
    transition: background 0.25s;
}
.sci li a:hover.linkedin{
    background:#0e76a8;

}
.sci li a:hover.xing{
    background:#126567;
    

}
.sci li a:hover.github{
    background:#171515;
    

}

.sci li a .fa{
    transition: 0.25s;
    pointer-events: none;
}
.sci li a:hover .fa{
    color:#fff;
    transform: scale(1.15) translateZ(20px)
}
.sci li a:hover.xing .fa{
    color: #cfdc00;
}
.js-tilt-glare
{
    border-radius: 10px;
}





